diff options
| author | real-zephex <[email protected]> | 2024-04-26 23:57:32 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-04-26 23:57:32 +0530 |
| commit | 4c74f9e66c6765f771f816ae64adaa2da66ed013 (patch) | |
| tree | 653122ca698b5a2e99e6d8839c5bd2c976d652b2 /src/app/manga/[title]/page.jsx | |
| parent | minor ui fix (diff) | |
| download | dramalama-4c74f9e66c6765f771f816ae64adaa2da66ed013.tar.xz dramalama-4c74f9e66c6765f771f816ae64adaa2da66ed013.zip | |
trying to implement edge runtime
Diffstat (limited to 'src/app/manga/[title]/page.jsx')
| -rw-r--r-- | src/app/manga/[title]/page.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/manga/[title]/page.jsx b/src/app/manga/[title]/page.jsx index 4446d05..fd406ac 100644 --- a/src/app/manga/[title]/page.jsx +++ b/src/app/manga/[title]/page.jsx @@ -3,7 +3,7 @@ import Image from "next/image"; import Link from "next/link";
import { PreFetchMangaInfo } from "../cacher";
-// This page displays all the available mangas or manhwas when the user searches for one/
+export const runtime = 'edge';
export default async function MangaInfo({ params }) {
const title = params.title;
|